home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / custrpt.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  843 b   |  23 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4.  
  5. #include "custrpt.h"
  6. #include "datamod.h"
  7. //---------------------------------------------------------------------------
  8. #pragma resource "*.dfm"
  9. TCustomerByInvoiceReport *CustomerByInvoiceReport;
  10. //---------------------------------------------------------------------------
  11. __fastcall TCustomerByInvoiceReport::TCustomerByInvoiceReport(TComponent* Owner)
  12.     : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16.  
  17. void __fastcall TCustomerByInvoiceReport::QRDBText1Print(TObject *sender,
  18.       AnsiString &Value)
  19. {
  20.   Value = DateToStr(MastData->CustByLastInvQueryLastInvoiceDate->Value);    
  21. }
  22. //---------------------------------------------------------------------------
  23.